博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
评论列表显示及排序,个人中心显示
阅读量:5116 次
发布时间:2019-06-13

本文共 2161 字,大约阅读时间需要 7 分钟。

1、显示所有评论

 

2、所有评论排序

uquestion = db.relationship('Question', backref=db.backref('comments', order_by=creat_time.desc))

3、显示评论条数

{
{ ques.comments|length }}

 

4、完成个人中心

(1)个人中心的页面布局(html文件及相应的样式文件)

(2)定义视图函数def usercenter(user_id):

(3)向前端页面传递参数

(4)页面显示相应数据

       (1) 发布的全部问答

       (2)发布的全部评论

       (3)个人信息

{% extends 'jianshu.html' %}{% block title %}个人中心{% endblock %}{% block main %}    
{% endblock %}

5.各个页面链接到个人中心

{% for foo in post %}       
  • {# {
    { foo.author.username }}
    #}
    {
    {foo.title}}
    {
    { foo.author.username }}
    评论:({
    { foo.comments|length }})
    {
    { foo.creat_time }}

    {

    { foo.detail }}

  • {% endfor %}

     

    转载于:https://www.cnblogs.com/lintingting/p/8027248.html

    你可能感兴趣的文章
    距离公式汇总以及Python实现
    查看>>
    一道不知道哪里来的容斥题
    查看>>
    window添加右键菜单
    查看>>
    Window7上搭建symfony开发环境(PEAR)
    查看>>
    Linux内核态、用户态简介与IntelCPU特权级别--Ring0-3
    查看>>
    第23月第24天 git命令 .git-credentials git rm --cached git stash clear
    查看>>
    java SE :标准输入/输出
    查看>>
    一些方便系统诊断的bash函数
    查看>>
    jquery中ajax返回值无法传递到上层函数
    查看>>
    css3之transform-origin
    查看>>
    Master选举原理
    查看>>
    [ JAVA编程 ] double类型计算精度丢失问题及解决方法
    查看>>
    小别离
    查看>>
    好玩的-记最近玩的几个经典ipad ios游戏
    查看>>
    PyQt5--EventSender
    查看>>
    Sql Server 中由数字转换为指定长度的字符串
    查看>>
    Java 多态 虚方法
    查看>>
    万能的SQLHelper帮助类
    查看>>
    tmux的简单快捷键
    查看>>
    [Swift]LeetCode922.按奇偶排序数组 II | Sort Array By Parity II
    查看>>